home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 114 / macaddict114.cdr / Software / Interface / DefaultFolderX-2.0.4.dmg / Default Folder X Installer.app / Contents / Resources / logoutWarning.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  2004-06-20  |  125 b   |  10 lines

  1. #!/bin/sh
  2.  
  3. if [ -f /tmp/DefaultFolderXRunning.${PPID} ] 
  4. then
  5.     rm /tmp/DefaultFolderXRunning.${PPID}
  6.     exit 1
  7. else
  8.     exit 0
  9. fi
  10.